home *** CD-ROM | disk | FTP | other *** search
- head 1.1;
- access ;
- symbols ;
- locks ; strict;
- comment @ * @;
-
-
- 1.1
- date 88.06.19.14.31.22; author ouster; state Exp;
- branches ;
- next ;
-
-
- desc
- @@
-
-
-
- 1.1
- log
- @Initial revision
- @
- text
- @/*
- * getgid.c --
- *
- * Procedure to map from Unix getgid system call to Sprite.
- *
- * Copyright (C) 1986 Regents of the University of California
- * All rights reserved.
- */
-
- #ifndef lint
- static char rcsid[] = "$Header: open.c,v 1.3 86/04/17 21:58:32 andrew Exp $ SPRITE (Berkeley)";
- #endif not lint
-
- #include "sprite.h"
- #include "compatInt.h"
-
-
- /*
- *----------------------------------------------------------------------
- *
- * getgid --
- *
- * Procedure to map from Unix getgid system call to Sprite
- * Proc_GetGroupIDs.
- *
- * Results:
- * The sprite group id is returned for now.
- *
- * Side effects:
- * None.
- *
- *----------------------------------------------------------------------
- */
-
- int
- getgid()
- {
- return(155);
- }
-
- /*
- *----------------------------------------------------------------------
- *
- * getegid --
- *
- * Procedure to map from Unix getgid system call to Sprite
- * Proc_GetGroupIDs.
- *
- * Results:
- * The sprite group id is returned for now.
- *
- * Side effects:
- * None.
- *
- *----------------------------------------------------------------------
- */
-
- int
- getegid()
- {
- return(155);
- }
- @
-